home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sniff_css.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  73 lines

  1. #
  2. # (C) Noam Rathaus
  3. #
  4. # Ref: 
  5. # From: Justin Hagstrom [justinhagstrom@yahoo.com]
  6. # To: news@securiteam.com
  7. # Subject: Snif Script Cross Site Scripting Vulnerability
  8. # Date: Tuesday 09/12/2003 02:40
  9. #
  10. # Changes by rd: description
  11. #
  12.  
  13.  
  14. if(description)
  15. {
  16.  script_id(11949);
  17.  script_bugtraq_id(9179);
  18.  script_version ("$Revision: 1.6 $");
  19.  name["english"] = "Snif Cross Site Scripting";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote host is running the 'Snif' CGI suite. There is a vulnerability in
  25. it which may allow an attacker to insert a malicious HTML and/or Javascript
  26. snipet in the response returned to a third party user (this problem is
  27. known as a cross site scripting bug).
  28.  
  29.  
  30. Solution: None at this time - disable this CGI suite
  31. Risk factor: Medium";
  32.  
  33.  
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Checks for the Snif Cross Site Scripting";
  38.  
  39.  script_summary(english:summary["english"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2003 Noam Rathaus");
  45.  family["english"] = "CGI abuses : XSS";
  46.  family["francais"] = "Abus de CGI";
  47.  script_family(english:family["english"], francais:family["francais"]);
  48.  script_dependencie("find_service.nes", "http_version.nasl");
  49.  script_require_ports("Services/www", 80);
  50.  exit(0);
  51. }
  52.  
  53. #
  54. # The script code starts here
  55. #
  56.  
  57. include("http_func.inc");
  58. include("http_keepalive.inc");
  59.  
  60. port = get_http_port(default:80);
  61.  
  62. if(!get_port_state(port))exit(0);
  63. if(!can_host_php(port:port))exit(0);
  64.  
  65. foreach dir ( cgi_dirs() )
  66. {
  67.  req = http_get(item:dir + "/index.php?path=<script>malicious_code</script>", port:port);
  68.  res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  69.  if ( res == NULL ) exit(0);
  70.  
  71.  if (egrep(pattern:"<script>malicious_code</script></title>", string:res)) { security_warning(port); exit(0); }
  72. }
  73.